home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00035_PictLinkTool.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  1.3 KB  |  65 lines

  1. --
  2. -- PictLinkTool
  3. --
  4.  
  5.  
  6. property ancestor
  7.  
  8. property pictLinkSprite
  9.  
  10.  
  11. on new me
  12.   -- set constants:
  13.   
  14.   
  15.   -- initialize the ancestor:
  16.   set ancestor = new (script "AppTools")
  17.   
  18.   -- do other initializations:
  19.   set pictLinkSprite = 0
  20.   return me
  21. end
  22.  
  23.  
  24. on destruct me
  25.   if objectP (ancestor) then destruct (ancestor)
  26.   set ancestor = 0
  27. end
  28.  
  29.  
  30. -- wake up the PictLinkTool and assign a sprite number:
  31.  
  32. on initPictLink me, spr
  33.   if not integerP (spr) or spr < 1 or spr > numSprites (me) then
  34.     alert "initPictLink needs a valid sprite number as an argument."
  35.     return
  36.   end if
  37.   
  38.   set pictLinkSprite = spr
  39. end
  40.  
  41.  
  42. -- make a picture link, relative to the passed sprite number.
  43. -- if the castLib of spr is "clickables" then link to "clickables PictLinks"
  44.  
  45. on makePictLink me, spr
  46.   if not pictLinkSprite then return
  47.   if not integerP (spr) then return
  48.   
  49.   set cLib = the name of castLib the castLibNum of sprite spr
  50.   set mNum = the memberNum of sprite spr
  51.   
  52.   puppetSprite pictLinkSprite, TRUE
  53.   set newLib = string (cLib && "PictLinks")
  54.   set the memberNum of sprite pictLinkSprite to mNum
  55.   set the castLibNum of sprite pictLinkSprite to the number of castLib newLib
  56. end
  57.  
  58.  
  59. -- clear a picture link by turning off the puppet:
  60.  
  61. on clearPictLink me
  62.   if not pictLinkSprite then return
  63.   puppetSprite pictLinkSprite, FALSE
  64. end
  65.